home *** CD-ROM | disk | FTP | other *** search
/ Alles Voor Internet / Tout Pour Internet / alles voor internet.iso / MacInternet™ / Telnet / NCSA / tn3270 2.4d7 source / NCSA⁄BYU TCP⁄IP / tools.h < prev    next >
C/C++ Source or Header  |  1991-06-27  |  626b  |  58 lines

  1. extern int netsleep
  2.   (
  3.     int n
  4.   );
  5.  
  6. extern int comparen
  7.   (
  8.     uint8 *s1,
  9.     uint8 *s2,
  10.     register int n
  11.   );
  12.  
  13. extern void netposterr
  14.   (
  15.     int num
  16.   );
  17.  
  18. extern int netputuev
  19.   (
  20.     int class,
  21.     int what,
  22.     int dat
  23.   );
  24.  
  25. extern int netputevent
  26.   (
  27.     int class,
  28.     int what,
  29.     int dat
  30.   );
  31.  
  32. extern int netgetevent
  33.   (
  34.     uint8 mask,
  35.     int *retclass,
  36.     int *retint
  37.   );
  38.  
  39. extern int rmqueue
  40.   (
  41.     struct window *wind,
  42.     int nbytes                    /* number to remove */
  43.   );
  44.  
  45. extern int enqueue
  46.   (
  47.     struct window *wind,
  48.     void *buffer,
  49.     int nbytes
  50.   );
  51.  
  52. int dequeue
  53.   (
  54.     struct window *wind,
  55.     void *buffer,
  56.     int nbytes                /* maximum number to copy out */
  57.   );
  58.